:root {
	--rd-green: #0b6b2b;
	--rd-green-dark: #075522;
	--rd-green-light: #eff7ed;
	--rd-yellow: #f2c94c;
	--rd-text: #172033;
	--rd-text-muted: #4b5563;
	--rd-white: #ffffff;
	--rd-border: #e5e7eb;

	--rd-container: 1280px;
	--rd-radius: 14px;
}

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

.rd-container {
	width: min(calc(100% - 48px), var(--rd-container));
	margin-inline: auto;
}

.rd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.rd-button:hover {
	transform: translateY(-1px);
}

.rd-button--primary {
	background: var(--rd-green);
	color: var(--rd-white);
}

.rd-button--primary:hover {
	background: var(--rd-green-dark);
	color: var(--rd-white);
}

.rd-button--secondary {
	background: var(--rd-white);
	border-color: var(--rd-green);
	color: var(--rd-green);
}

.rd-button--secondary:hover {
	background: var(--rd-green-light);
	color: var(--rd-green-dark);
}

@media (max-width: 767px) {
	.rd-container {
		width: min(calc(100% - 32px), var(--rd-container));
	}
}

/* =========================================================
   SITE FOOTER
   ========================================================= */

.rd-site-footer {
	background:
		linear-gradient(
			135deg,
			#075522 0%,
			#0b6b2b 100%
		);

	color: #ffffff;
}

.rd-site-footer__grid {
	display: grid;

	grid-template-columns:
		1.45fr
		1.15fr
		0.75fr
		0.75fr
		1fr;

	gap: 40px;

	padding:
		46px
		0
		38px;

	align-items: start;
}


/* =========================================================
   COMPANY
   ========================================================= */

.rd-site-footer__brand {
	display: inline-block;

	margin-bottom: 12px;

	color: #ffffff;

	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.25;

	text-decoration: none;
}

.rd-site-footer__brand:hover {
	color: var(--rd-yellow);
}

.rd-site-footer__services {
	margin:
		0
		0
		10px;

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

	font-size: 0.9rem;
	line-height: 1.5;
}

.rd-site-footer__services span {
	margin-inline: 3px;

	color: var(--rd-yellow);
}

.rd-site-footer__description {
	max-width: 280px;

	margin: 0;

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

	font-size: 0.87rem;
	line-height: 1.65;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.rd-site-footer__column h2 {
	margin:
		0
		0
		16px;

	color: #ffffff;

	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.3;
}

.rd-site-footer__list,
.rd-site-footer__links {
	display: grid;

	gap: 10px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.rd-site-footer__list a,
.rd-site-footer__links a,
.rd-site-footer__contact-line {
	color: rgba(255, 255, 255, 0.86);

	font-size: 0.86rem;
	line-height: 1.45;

	text-decoration: none;
}

.rd-site-footer__list a,
.rd-site-footer__contact-line {
	display: flex;
	align-items: center;

	gap: 9px;
}

.rd-site-footer__list a:hover,
.rd-site-footer__links a:hover {
	color: #ffffff;
}


/* =========================================================
   CONTACT ICONS
   ========================================================= */

.rd-site-footer__list svg {
	flex: 0 0 auto;

	width: 17px;
	height: 17px;

	fill: none;

	stroke: var(--rd-yellow);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.rd-site-footer__whatsapp {
	display: flex;

	align-items: flex-start;
	justify-content: flex-end;
}

.rd-site-footer__whatsapp > a {
	display: inline-flex;
	align-items: center;

	gap: 12px;

	color: #ffffff;

	text-decoration: none;
}

.rd-site-footer__whatsapp-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 62px;
	height: 62px;

	flex: 0 0 62px;

	transition:
		transform 0.2s ease;
}

.rd-site-footer__whatsapp-icon img {
	display: block;

	width: 54px;
	height: 54px;

	object-fit: contain;
}


.rd-site-footer__whatsapp strong,
.rd-site-footer__whatsapp small {
	display: block;
}

.rd-site-footer__whatsapp strong {
	font-size: 0.98rem;
	line-height: 1.2;
}

.rd-site-footer__whatsapp small {
	margin-top: 2px;

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

	font-size: 0.82rem;
}

.rd-site-footer__whatsapp > a:hover {
	color: #ffffff;
}

.rd-site-footer__whatsapp > a:hover
.rd-site-footer__whatsapp-icon {
	transform: translateY(-2px) scale(1.04);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.rd-site-footer__bottom {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	padding:
		17px
		0
		19px;

	border-top:
		1px
		solid
		rgba(255, 255, 255, 0.14);
}

.rd-site-footer__bottom p {
	margin: 0;

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

	font-size: 0.76rem;
	line-height: 1.45;
}


/* =========================================================
   SITE FOOTER — TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.rd-site-footer__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap:
			34px
			46px;

		padding:
			40px
			0
			34px;
	}

	.rd-site-footer__whatsapp {
		justify-content: flex-start;
	}
}


/* =========================================================
   SITE FOOTER — MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.rd-site-footer__grid {
		grid-template-columns: 1fr;

		gap: 30px;

		padding:
			34px
			0
			28px;
	}

	.rd-site-footer__description {
		max-width: 100%;
	}

	.rd-site-footer__column h2 {
		margin-bottom: 12px;
	}

	.rd-site-footer__whatsapp {
		justify-content: flex-start;
	}

    .rd-site-footer__whatsapp-icon {
        width: 56px;
        height: 56px;

        flex-basis: 56px;
    }

    .rd-site-footer__whatsapp-icon img {
        width: 48px;
        height: 48px;
    }

	.rd-site-footer__bottom {
		flex-direction: column;

		align-items: flex-start;

		gap: 6px;

		padding:
			16px
			0
			18px;
	}
}

/* =========================================================
   HEADER PHONE BUTTON — MOBILE ONLY
   ========================================================= */

@media (max-width: 767px) {

	.ast-header-button-1 .ast-custom-button {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;

		width: 46px;
		height: 46px;

		padding: 0 !important;

		font-size: 0 !important;
		line-height: 1;

		border-radius: 10px;
      
      	transform: translateY(4px);
	}

	.ast-header-button-1 .ast-custom-button::before {
		content: "";

		display: block;

		width: 24px;
		height: 24px;
		flex: 0 0 24px;

		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.33 1.84.56 2.8.69A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");

		background-repeat: no-repeat;
		background-position: center;
		background-size: 24px 24px;

		transform: scale(1.22);
	}

}
