/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

:root {
	--cnvs-body-font: "Inter", sans-serif;
	--cnvs-primary-font: "Inter", sans-serif;
	--cnvs-secondary-font: "Playfair Display", serif;
	--cnvs-themecolor: #83b341;
	--cnvs-themecolor-rgb: 131, 179, 65;
}

.hover-text {
    display: inline-block; /* Necesario para aplicar el efecto de hover */
    color: black; /* Color original */
    transition: color 0.3s ease; /* Transición suave */
}

.hover-text:hover {
    color: #83b341; /* Color verde al hacer hover */
}
