/* =========================================================
   REALTOR CENTER — FOOTER FINAL
========================================================= */

.rcf-footer,
.rcf-footer *,
.rcf-footer *::before,
.rcf-footer *::after {
	box-sizing: border-box;
}

.rcf-footer {
	--rcf-black: #050505;
	--rcf-panel: #0c0c0c;
	--rcf-white: #ffffff;
	--rcf-gray: rgba(255, 255, 255, 0.76);
	--rcf-gold: #dfa83c;
	--rcf-gold-light: #efc765;
	--rcf-border: rgba(223, 168, 60, 0.2);

	width: 100%;
	padding: 68px 0 0;

	background:
		radial-gradient(
			circle at 12% 20%,
			rgba(223, 168, 60, 0.04),
			transparent 29%
		),
		linear-gradient(
			180deg,
			#050505 0%,
			#020202 100%
		);

	border-top: 1px solid var(--rcf-border);
	color: var(--rcf-white);
}

.rcf-footer__container {
	width: min(1840px, calc(100% - 64px));
	margin: 0 auto;
	padding-bottom: 56px;

	display: grid;
	grid-template-columns:
		minmax(300px, 0.9fr)
		minmax(390px, 1.15fr)
		minmax(270px, 0.78fr)
		minmax(230px, 0.65fr);

	gap: clamp(36px, 4vw, 70px);
	align-items: start;
}

/* =========================================================
   MARCA
========================================================= */

.rcf-footer__brand-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 100%;
}

.rcf-brand {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	max-width: 100%;
	text-decoration: none;
}

.rcf-brand__symbol {
	display: block;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.rcf-brand__wordmark {
	display: block;
	width: min(310px, calc(100% - 78px));
	height: auto;
	max-height: 68px;
	object-fit: contain;
	object-position: left center;
}

.rcf-footer__tagline {
	max-width: 430px;
	margin: 29px 0 0;

	color: rgba(255, 255, 255, 0.82);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: clamp(16px, 1.15vw, 19px);
	font-weight: 600;
	line-height: 1.75;
}

/* =========================================================
   ENCABEZADOS
========================================================= */

.rcf-footer__heading {
	margin: 0 0 26px;

	color: var(--rcf-gold);

	font-family:
		Georgia,
		"Times New Roman",
		serif;

	font-size: clamp(29px, 2vw, 39px);
	font-weight: 700;
	line-height: 1.1;
}

/* =========================================================
   CONTACTO
========================================================= */

.rcf-contact-list {
	display: grid;
	gap: 17px;

	margin: 0 0 28px;
	padding: 0;

	list-style: none;
}

.rcf-contact-list li {
	display: grid;
	gap: 5px;

	font-family:
		Arial,
		Helvetica,
		sans-serif;
}

.rcf-contact-list strong {
	color: var(--rcf-gold-light);

	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rcf-contact-list a {
	color: var(--rcf-white);

	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;

	transition: color 170ms ease;
}

.rcf-contact-list a:hover,
.rcf-contact-list a:focus-visible {
	color: var(--rcf-gold);
}

/* =========================================================
   DIRECCIÓN PREMIUM
========================================================= */

.rcf-address-card {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 16px;

	padding: 21px;

	border: 1px solid rgba(223, 168, 60, 0.22);
	border-radius: 17px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.055),
			rgba(255, 255, 255, 0.018)
		);

	box-shadow:
		0 22px 44px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rcf-address-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 46px;
	height: 46px;

	border: 1px solid rgba(223, 168, 60, 0.3);
	border-radius: 13px;

	background: rgba(223, 168, 60, 0.09);
	color: var(--rcf-gold);
}

.rcf-address-card__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.rcf-address-card__eyebrow {
	margin: 0 0 9px;

	color: var(--rcf-gold-light);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.rcf-address-card__address {
	display: grid;
	gap: 2px;

	margin: 0;

	color: rgba(255, 255, 255, 0.78);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 14px;
	font-style: normal;
	line-height: 1.55;
}

.rcf-address-card__address span:first-child {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
}

.rcf-address-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;

	margin-top: 14px;

	color: var(--rcf-gold-light);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 13px;
	font-weight: 800;
	text-decoration: none;

	transition:
		color 170ms ease,
		transform 170ms ease;
}

.rcf-address-card__link:hover {
	color: #ffffff;
	transform: translateX(2px);
}

/* =========================================================
   HORARIOS
========================================================= */

.rcf-schedule {
	display: grid;
	gap: 14px;
}

.rcf-schedule__item {
	display: grid;
	gap: 5px;

	padding: 15px 0;

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rcf-schedule__item:first-child {
	padding-top: 0;
}

.rcf-schedule__item:last-child {
	border-bottom: 0;
}

.rcf-schedule__day {
	color: #ffffff;

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 15px;
	font-weight: 700;
}

.rcf-schedule__time {
	color: var(--rcf-gold-light);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 14px;
	font-weight: 700;
}

.rcf-schedule small {
	color: rgba(255, 255, 255, 0.56);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 12px;
	line-height: 1.5;
}

/* =========================================================
   REDES SOCIALES
========================================================= */

.rcf-social-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;

	margin-bottom: 28px;
}

.rcf-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 52px;
	height: 52px;

	border: 1px solid rgba(223, 168, 60, 0.34);
	border-radius: 14px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.055),
			rgba(255, 255, 255, 0.018)
		);

	color: var(--rcf-gold);
	text-decoration: none;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		0 12px 28px rgba(0, 0, 0, 0.24);

	transition:
		transform 170ms ease,
		background 170ms ease,
		border-color 170ms ease,
		color 170ms ease;
}

.rcf-social-icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.rcf-social-icon:hover {
	transform: translateY(-2px);
}

.rcf-social-icon--facebook:hover {
	background: rgba(24, 119, 242, 0.16);
	border-color: #1877f2;
	color: #5a9df5;
}

.rcf-social-icon--instagram:hover {
	background: rgba(225, 48, 108, 0.14);
	border-color: #e1306c;
	color: #f26194;
}

.rcf-social-icon--twitter:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.75);
	color: #ffffff;
}

.rcf-social-icon--google:hover {
	background: rgba(66, 133, 244, 0.14);
	border-color: #4285f4;
	color: #72a9ff;
}

.rcf-footer__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 53px;
	padding: 0 23px;

	border-radius: 11px;

	background:
		linear-gradient(
			135deg,
			#efc563 0%,
			#d49829 100%
		);

	color: #090909;

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;

	box-shadow:
		0 16px 36px rgba(188, 132, 27, 0.24);

	transition:
		transform 170ms ease,
		box-shadow 170ms ease;
}

.rcf-footer__whatsapp:hover {
	transform: translateY(-2px);

	box-shadow:
		0 20px 42px rgba(188, 132, 27, 0.31);
}

/* =========================================================
   BARRA INFERIOR
========================================================= */

.rcf-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.012);
}

.rcf-footer__bottom-inner {
	width: min(1840px, calc(100% - 64px));
	margin: 0 auto;
	padding: 19px 0 22px;
}

.rcf-footer__bottom p {
	margin: 0;

	color: rgba(255, 255, 255, 0.54);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 14px;
	line-height: 1.5;
}

/* =========================================================
   ESCRITORIO MEDIO
========================================================= */

@media (max-width: 1450px) {
	.rcf-footer__container {
		width: calc(100% - 48px);

		grid-template-columns:
			minmax(270px, 0.85fr)
			minmax(350px, 1.15fr)
			minmax(240px, 0.75fr)
			minmax(210px, 0.65fr);

		gap: 32px;
	}

	.rcf-brand__wordmark {
		width: min(270px, calc(100% - 74px));
	}

	.rcf-footer__bottom-inner {
		width: calc(100% - 48px);
	}
}

/* =========================================================
   TABLETA
========================================================= */

@media (max-width: 1100px) {
	.rcf-footer__container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px 36px;
	}

	.rcf-footer__brand-column {
		align-items: center;
		text-align: center;
	}

	.rcf-brand {
		justify-content: center;
	}

	.rcf-footer__tagline {
		max-width: 590px;
	}

	.rcf-address-card {
		max-width: 540px;
	}
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 720px) {
	.rcf-footer {
		padding-top: 48px;
	}

	.rcf-footer__container {
		width: calc(100% - 24px);

		grid-template-columns: 1fr;
		gap: 37px;

		padding-bottom: 40px;
	}

	.rcf-footer__brand-column {
		align-items: center;
		text-align: center;
	}

	.rcf-brand {
		width: 100%;
		justify-content: center;
		gap: 12px;
	}

	.rcf-brand__symbol {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
	}

	.rcf-brand__wordmark {
		width: min(260px, calc(100% - 62px));
	}

	.rcf-footer__tagline {
		font-size: 16px;
		line-height: 1.65;
	}

	.rcf-footer__heading {
		font-size: 29px;
	}

	.rcf-address-card {
		grid-template-columns: 42px minmax(0, 1fr);
		padding: 18px;
	}

	.rcf-address-card__icon {
		width: 42px;
		height: 42px;
	}

	.rcf-footer__bottom-inner {
		width: calc(100% - 24px);
	}
}

/* =========================================================
   REFINAMIENTO FINAL FOOTER
   Dirección simple + horarios ejecutivos + menor altura
========================================================= */

.rcf-footer {
	background:
		radial-gradient(
			circle at 12% 18%,
			rgba(213, 163, 59, 0.035),
			transparent 28%
		),
		#050505 !important;
}

/* Contenedor principal más bajo y mejor proporcionado */
.rcf-footer__container {
	width: min(1460px, calc(100% - 64px)) !important;
	margin: 0 auto !important;
	padding-top: 42px !important;
	padding-bottom: 34px !important;

	display: grid !important;
	grid-template-columns:
		minmax(260px, 0.92fr)
		minmax(330px, 1.14fr)
		minmax(270px, 0.82fr)
		minmax(220px, 0.68fr) !important;

	column-gap: clamp(32px, 3.1vw, 62px) !important;
	row-gap: 28px !important;
	align-items: start !important;
}

/* =========================================================
   MARCA
========================================================= */

.rcf-footer__brand-column {
	align-self: start !important;
	padding-top: 4px !important;
}

.rcf-brand {
	display: flex !important;
	align-items: center !important;
	gap: 18px !important;
	margin: 0 0 22px !important;
}

.rcf-brand__symbol {
	width: 56px !important;
	height: 56px !important;
	flex: 0 0 56px !important;
}

.rcf-brand__wordmark {
	width: min(230px, 100%) !important;
	height: auto !important;
	max-height: 50px !important;
	object-fit: contain !important;
	object-position: left center !important;
}

.rcf-footer__tagline {
	max-width: 350px !important;
	margin: 0 !important;

	color: rgba(255, 255, 255, 0.76) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.65 !important;
}

/* =========================================================
   ENCABEZADOS
========================================================= */

.rcf-footer__heading {
	margin: 0 0 24px !important;

	color: #dda93d !important;
	font-size: clamp(27px, 2.15vw, 36px) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	letter-spacing: -0.025em !important;
}

/* =========================================================
   CONTACTO
========================================================= */

.rcf-contact-list {
	display: grid !important;
	gap: 16px !important;

	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.rcf-contact-list li {
	display: grid !important;
	gap: 4px !important;
	margin: 0 !important;
}

.rcf-contact-list strong {
	color: #dfa938 !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.11em !important;
	text-transform: uppercase !important;
}

.rcf-contact-list a {
	color: rgba(255, 255, 255, 0.92) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	text-decoration: none !important;
	overflow-wrap: anywhere !important;
}

.rcf-contact-list a:hover {
	color: #e6b84e !important;
}

/* =========================================================
   UBICACIÓN SIN TARJETA
========================================================= */

.rcf-location {
	margin-top: 20px !important;
	padding-top: 18px !important;

	border-top: 1px solid rgba(222, 169, 61, 0.23) !important;
	background: transparent !important;
	box-shadow: none !important;
}

.rcf-location__label {
	margin: 0 0 7px !important;

	color: #dda93d !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
}

.rcf-location__address {
	display: grid !important;
	gap: 4px !important;

	max-width: 390px !important;
	margin: 0 !important;

	color: rgba(255, 255, 255, 0.68) !important;
	font-style: normal !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
}

.rcf-location__address strong {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
}

.rcf-location__address span {
	display: block !important;
}

.rcf-location__link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;

	margin-top: 8px !important;

	color: #e0ad43 !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	text-decoration: none !important;
}

.rcf-location__link:hover {
	color: #ffffff !important;
}

/* Ocultar completamente cualquier tarjeta antigua retenida por caché */
.rcf-address-card {
	display: none !important;
}

/* =========================================================
   HORARIOS — FORMATO EJECUTIVO COMPACTO
========================================================= */

.rcf-schedule {
	display: grid !important;
	gap: 8px !important;
	margin: 0 !important;
}

.rcf-schedule__item {
	display: grid !important;
	grid-template-columns: minmax(105px, 0.8fr) minmax(125px, 1fr) !important;
	grid-template-areas:
		"day time"
		"note note" !important;

	align-items: center !important;
	column-gap: 18px !important;
	row-gap: 4px !important;

	margin: 0 !important;
	padding: 11px 0 !important;

	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.105) !important;
	background: transparent !important;
	box-shadow: none !important;
}

.rcf-schedule__item:first-child {
	padding-top: 0 !important;
}

.rcf-schedule__item:last-child {
	padding-bottom: 0 !important;
	border-bottom: 0 !important;
}

.rcf-schedule__day {
	grid-area: day !important;

	color: rgba(255, 255, 255, 0.94) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
}

.rcf-schedule__time {
	grid-area: time !important;

	color: #e0ad43 !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	text-align: right !important;
	white-space: nowrap !important;
}

.rcf-schedule__item small {
	grid-area: note !important;

	margin: 0 !important;

	color: rgba(255, 255, 255, 0.48) !important;
	font-size: 10.5px !important;
	font-weight: 400 !important;
	line-height: 1.35 !important;
}

/* =========================================================
   REDES SOCIALES
========================================================= */

.rcf-social-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	margin: 0 0 20px !important;
}

.rcf-social-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: 44px !important;
	height: 44px !important;

	border: 1px solid rgba(222, 169, 61, 0.34) !important;
	border-radius: 12px !important;
	background: rgba(255, 255, 255, 0.015) !important;

	transition:
		transform 160ms ease,
		border-color 160ms ease,
		background-color 160ms ease !important;
}

.rcf-social-icon svg {
	width: 19px !important;
	height: 19px !important;
	fill: #dda93d !important;
}

.rcf-social-icon:hover {
	transform: translateY(-2px) !important;
	border-color: #dda93d !important;
	background: rgba(221, 169, 61, 0.09) !important;
}

.rcf-footer__whatsapp {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	min-height: 48px !important;
	padding: 0 21px !important;

	border-radius: 10px !important;

	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
}

/* =========================================================
   COPYRIGHT
========================================================= */

.rcf-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.075) !important;
}

.rcf-footer__bottom-inner {
	width: min(1460px, calc(100% - 64px)) !important;
	margin: 0 auto !important;
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.rcf-footer__bottom-inner p {
	margin: 0 !important;

	color: rgba(255, 255, 255, 0.48) !important;
	font-size: 11px !important;
	line-height: 1.4 !important;
}

/* =========================================================
   MONITORES GRANDES
========================================================= */

@media (min-width: 1700px) {
	.rcf-footer__container {
		width: min(1520px, calc(100% - 96px)) !important;
		grid-template-columns:
			minmax(275px, 0.94fr)
			minmax(350px, 1.15fr)
			minmax(285px, 0.82fr)
			minmax(230px, 0.68fr) !important;
	}

	.rcf-footer__bottom-inner {
		width: min(1520px, calc(100% - 96px)) !important;
	}
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) {
	.rcf-footer__container {
		width: min(960px, calc(100% - 48px)) !important;
		padding-top: 38px !important;
		padding-bottom: 30px !important;

		grid-template-columns:
			repeat(2, minmax(0, 1fr)) !important;

		gap: 34px 46px !important;
	}

	.rcf-footer__bottom-inner {
		width: min(960px, calc(100% - 48px)) !important;
	}
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 680px) {
	.rcf-footer__container {
		width: min(100% - 36px, 560px) !important;
		padding-top: 32px !important;
		padding-bottom: 26px !important;

		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}

	.rcf-footer__heading {
		margin-bottom: 18px !important;
		font-size: 27px !important;
	}

	.rcf-brand {
		gap: 14px !important;
		margin-bottom: 17px !important;
	}

	.rcf-brand__symbol {
		width: 50px !important;
		height: 50px !important;
		flex-basis: 50px !important;
	}

	.rcf-brand__wordmark {
		width: 205px !important;
	}

	.rcf-footer__tagline {
		max-width: none !important;
	}

	.rcf-schedule__item {
		grid-template-columns: minmax(98px, 0.8fr) minmax(120px, 1fr) !important;
		column-gap: 12px !important;
	}

	.rcf-footer__bottom-inner {
		width: min(100% - 36px, 560px) !important;
		padding-top: 13px !important;
		padding-bottom: 13px !important;
	}
}

/* =========================================================
   AJUSTE FINAL FOOTER — COMPACTO + CRÉDITO VEDAeco TECH
========================================================= */

.rcf-footer {
	padding-top: 14px !important;
}

.rcf-footer__container {
	padding-top: 24px !important;
	padding-bottom: 20px !important;
	row-gap: 18px !important;
	align-items: start !important;
}

.rcf-footer__brand-column,
.rcf-footer__contact-column,
.rcf-footer__hours-column,
.rcf-footer__social-column {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.rcf-footer__heading {
	margin: 0 0 14px !important;
	font-size: clamp(24px, 1.9vw, 32px) !important;
	line-height: 1.05 !important;
}

.rcf-brand {
	margin: 0 0 14px !important;
}

.rcf-footer__tagline {
	margin: 0 !important;
	font-size: 14px !important;
	line-height: 1.55 !important;
	max-width: 320px !important;
}

.rcf-contact-list {
	gap: 10px !important;
}

.rcf-contact-list li {
	gap: 3px !important;
}

.rcf-contact-list strong,
.rcf-location__label {
	font-size: 10px !important;
	letter-spacing: 0.12em !important;
}

.rcf-contact-list a {
	font-size: 13px !important;
	line-height: 1.35 !important;
}

.rcf-location {
	margin-top: 12px !important;
	padding-top: 12px !important;
}

.rcf-location__address {
	gap: 3px !important;
	font-size: 12.5px !important;
	line-height: 1.45 !important;
}

.rcf-location__address strong {
	font-size: 13px !important;
}

.rcf-location__link {
	margin-top: 6px !important;
	font-size: 11.5px !important;
}

.rcf-schedule {
	gap: 2px !important;
}

.rcf-schedule__item {
	padding: 8px 0 !important;
	row-gap: 2px !important;
}

.rcf-schedule__day,
.rcf-schedule__time {
	font-size: 12.5px !important;
}

.rcf-schedule__item small {
	font-size: 10px !important;
	line-height: 1.3 !important;
}

.rcf-social-list {
	margin: 0 0 14px !important;
	gap: 8px !important;
}

.rcf-social-icon {
	width: 42px !important;
	height: 42px !important;
	border-radius: 11px !important;
}

.rcf-footer__whatsapp {
	min-height: 44px !important;
	padding: 0 18px !important;
	font-size: 12.5px !important;
}

.rcf-footer__bottom {
	margin-top: 8px !important;
}

.rcf-footer__bottom-inner {
	width: min(1460px, calc(100% - 64px)) !important;
	margin: 0 auto !important;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
	text-align: center !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
}

.rcf-footer__copyright {
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.56) !important;
	font-size: 11px !important;
	line-height: 1.5 !important;
	text-align: center !important;
}

.rcf-footer__copyright a {
	color: #d9ab45 !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	transition: color 160ms ease !important;
}

.rcf-footer__copyright a:hover {
	color: #ffffff !important;
}

/* Tablet */
@media (max-width: 1120px) {
	.rcf-footer__container {
		padding-top: 22px !important;
		padding-bottom: 18px !important;
		row-gap: 22px !important;
	}

	.rcf-footer__bottom-inner {
		width: min(960px, calc(100% - 48px)) !important;
	}
}

/* Móvil */
@media (max-width: 680px) {
	.rcf-footer {
		padding-top: 10px !important;
	}

	.rcf-footer__container {
		padding-top: 18px !important;
		padding-bottom: 16px !important;
		row-gap: 20px !important;
	}

	.rcf-footer__heading {
		font-size: 25px !important;
		margin-bottom: 12px !important;
	}

	.rcf-footer__tagline {
		max-width: none !important;
		font-size: 13.5px !important;
	}

	.rcf-footer__bottom-inner {
		width: min(100% - 32px, 560px) !important;
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.rcf-footer__copyright {
		font-size: 10.5px !important;
	}
}
