/* =========================
   CSS global del child theme
   ========================= */

:root {
	--dmc-radius: 12px;
	--dmc-transition: 0.3s ease;
	--dmc-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base */
body {
	word-wrap: break-word;
}

/* Utilidades */
.dmc-hidden {
	display: none !important;
}

.dmc-rounded {
	border-radius: var(--dmc-radius);
}

.dmc-shadow {
	box-shadow: var(--dmc-shadow);
}

.dmc-transition {
	transition: all var(--dmc-transition);
}

/* Ejemplo de botón custom */
.dmc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9em 1.4em;
	border-radius: 999px;
	text-decoration: none;
	transition: all var(--dmc-transition);
}
