/*
 * Maya Widgets - Clima y Herramientas
 * Fila de dos columnas responsiva + tarjetas de herramientas.
 */

/* ---------- Fila de dos columnas (clima | herramientas) ---------- */

.maya-fila-widgets {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 24px;
	margin: 24px 0;
	max-width: 100%;
	box-sizing: border-box;
}

.maya-fila-widgets .maya-col {
	flex: 1 1 calc(50% - 12px);
	min-width: 280px;
	max-width: 100%;
	box-sizing: border-box;
}

.maya-fila-widgets .maya-col > * {
	max-width: 100%;
}

@media (max-width: 768px) {
	.maya-fila-widgets {
		gap: 16px;
	}

	.maya-fila-widgets .maya-col {
		flex: 1 1 100%;
	}
}

/* ---------- Módulo de herramientas ---------- */

.maya-herramientas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
}

.maya-herramienta-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1e5fa8 0%, #2f7cc9 100%);
	box-shadow: 0 2px 8px rgba(20, 60, 110, 0.25);
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.maya-herramienta-card:hover,
.maya-herramienta-card:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(20, 60, 110, 0.35);
	text-decoration: none;
}

.maya-herramienta-icono {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
}

.maya-herramienta-texto {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.maya-herramienta-titulo {
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
}

.maya-herramienta-descripcion {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	line-height: 1.3;
}

.maya-herramienta-flecha {
	flex: 0 0 auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
}
