/**
 * RN Automation – Rodapé (enxuto)
 */

.rn-footer {
	--rn-footer-text: #2a3148;
	--rn-footer-text-muted: #3d4556;
	--rn-footer-heading: #0a0f2b;
	background: #f7f8fb;
	color: var(--rn-footer-text);
	border-top: 3px solid var(--rn-accent, #ff3300);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.rn-footer__main {
	padding: 36px 0 32px;
}

.rn-footer__columns {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr 1fr;
	gap: 28px 32px;
	align-items: start;
}

.rn-footer__title {
	margin: 0 0 14px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--rn-footer-heading);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.rn-footer__logo-link {
	display: inline-block;
	margin-bottom: 12px;
	line-height: 0;
}

.rn-footer__logo {
	display: block;
	max-width: 140px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.rn-footer__tagline {
	margin: 0;
	max-width: 260px;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--rn-footer-text-muted);
	font-weight: 500;
}

.rn-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rn-footer__list li {
	padding: 0 0 6px;
	line-height: 1.45;
}

.rn-footer__list a {
	font-size: 0.9rem;
	color: var(--rn-footer-text);
	font-weight: 500;
	text-decoration: none;
}

.rn-footer__list a:hover {
	color: var(--rn-accent, #ff3300);
}

.rn-footer__contact-list {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.rn-footer__contact-line {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 0 0 10px;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--rn-footer-text);
}

.rn-footer__contact-line i {
	flex-shrink: 0;
	width: 18px;
	margin-top: 2px;
	color: var(--rn-accent, #ff3300);
	font-size: 14px;
	text-align: center;
}

.rn-footer__contact-line a {
	color: var(--rn-footer-text);
	font-weight: 500;
	text-decoration: none;
}

.rn-footer__contact-line a:hover {
	color: var(--rn-accent, #ff3300);
}

.rn-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rn-footer__social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #dde1ea;
	border-radius: 6px;
	color: var(--rn-navy, #0a0f2b);
	font-size: 16px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rn-footer__social a:hover {
	background: var(--rn-accent, #ff3300);
	border-color: var(--rn-accent, #ff3300);
	color: #fff;
}

.rn-footer__bottom {
	padding: 14px 0;
	background: #eef0f5;
	border-top: 1px solid #dde1ea;
}

.rn-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
}

.rn-footer__copyright {
	font-size: 0.85rem;
	color: var(--rn-footer-text-muted);
	font-weight: 500;
}

.rn-footer__copyright strong {
	color: var(--rn-footer-heading);
	font-weight: 700;
}

.rn-footer__bottom-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rn-footer__bottom-nav a {
	font-size: 0.85rem;
	color: var(--rn-footer-text-muted);
	font-weight: 500;
	text-decoration: none;
}

.rn-footer__bottom-nav a:hover {
	color: var(--rn-accent, #ff3300);
}

.rn-footer .main-footer,
.rn-footer .footer-contact-info {
	display: none !important;
}

@media (max-width: 991px) {
	.rn-footer__columns {
		grid-template-columns: 1fr 1fr;
	}

	.rn-footer__col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.rn-footer__main {
		padding: 28px 0 24px;
	}

	.rn-footer__columns {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.rn-footer__logo {
		max-width: 120px;
	}

	.rn-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.rn-footer__bottom-nav ul {
		flex-direction: column;
		gap: 6px;
	}
}
